home *** CD-ROM | disk | FTP | other *** search
/ Safarir 5 / SafTV-CD5.iso / mac / SAF-TV 5 / SAFTV / pape.swf / scripts / frame_3 / DoAction.as
Text File  |  2002-12-17  |  341b  |  13 lines

  1. loadedFrames = getProperty("/", _framesloaded);
  2. totalFrames = getProperty("/", _totalframes);
  3. if(Number(loadedFrames) < Number(totalFrames))
  4. {
  5.    percentageOutput = int(loadedFrames / totalFrames * 100);
  6.    setProperty("barre 2", _xscale, int(loadedFrames / totalFrames * 100));
  7.    gotoAndPlay(2);
  8. }
  9. else
  10. {
  11.    gotoAndPlay(10);
  12. }
  13.